home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00183_Mousetrap in slot machine round.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  180 b   |  20 lines

  1. property pDownFlag
  2.  
  3. on mouseUp
  4.   if pDownFlag then
  5.     exitGame(0)
  6.   end if
  7. end
  8.  
  9. on mouseDown
  10.   pDownFlag = 1
  11. end
  12.  
  13. on mouseEnter
  14.   pDownFlag = 0
  15. end
  16.  
  17. on mouseLeave
  18.   nothing()
  19. end
  20.